home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
tex
/
manprint.zip
/
MANPRINT.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-27
|
204 b
|
18 lines
#include <stdio.h>
void main()
{
while(!feof(stdin))
{
char a;
int x;
a = getc(stdin);
if(a == 8)
for(x = 0; x < 5; x++)
getc(stdin);
else
putc(a, stdout);
}
}